home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / CENVIW2.ZIP / KEYCODE.CMM < prev    next >
Text File  |  1993-09-12  |  199b  |  7 lines

  1. // KeyCode - Print values of characters pressed
  2. printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
  3. do {
  4.    key = getch();
  5.    printf("key=%04X\n",key)
  6. } while( key != '\033' );
  7.